/searchTimeSlot
[POST]
To list appointment slots from ACUT
https://nonprod.lc.esb.cloud.lla.com/test/sfdc-ux/sfdc-ux/v1/JM/searchTimeSlot
URI Params
| Name | Type | Description | Required |
|---|
| businessId | String | 2 letter ISO 3166 country code (CO, HN, CR, DO, SV, GT, WHS etc.) identifying the business unit. Expected:JM,AI,AG,VG,KY,DM,GD,MS,KN,LC,VC,TC | Y |
| Name | Type | Description | Required |
|---|
| client_id | string | The client_id identifying the channel. Minimum characters: 5 | Y |
| client_secret | string | Password associated with the client_id. Minimum characters: 5 | Y |
| X-Correlation-ID | string | Identifier that correlates HTTP request between a client and server. Any identification model (UUDI, checksum, etc.) can be used, as long as it is a unique value to differentiate a transaction. | Y |
Body Definitions
| Name | Type | Description | Required |
|---|
| requestedTimeSlot[].validFor.endDateTime | string | End of the time period | Y |
| requestedTimeSlot[].validFor.startDateTime | string | Start of the time period | Y |
| relatedEntity[0].id | string | Channel Name.Ex:SALESFORCE | Y |
| relatedEntity[0].name | string | Channel Ex:SALESFORCE123 | Y |
| relatedEntity[0].role | string | Default: channel | Y |
| relatedEntity[0].@referredType | datetime | Defalult: Channel | Y |
| relatedEntity[1].id | string | Ticket Number | Y |
| relatedEntity[1].name | string | Ticket type | Y |
| relatedEntity[1].role | string | Default: Ticket | Y |
| relatedEntity[1].@referredType | datetime | Defalult: TroubleTicket | Y |
Sample Request
{
"requestedTimeSlot": [
{
"validFor": {
"endDateTime": "2025-10-07T08:00:00.000+05:30",
"startDateTime": "2025-10-06T08:00:00.000+05:30"
}
}
],
"relatedEntity": [
{
"id": "SALESFORCE",
"name": "SALESFORCE123",
"role": "channel",
"@referredType": "Channel"
},
{
"id": "2025101503795581",
"name": "PHONE",
"role": "Ticket",
"@referredType": "TroubleTicket"
}
]
}
Sample Response
{
"id": "12cfac79-ee61-4cfe-b943-8205e942594c",
"searchDate": "2025-10-06T08:00:00.000+05:30",
"searchResult": "success",
"availableTimeSlot": [
{
"id": "OOS:AD",
"validFor": {
"endDateTime": "2025-10-06T17:00:00.000+05:30",
"startDateTime": "2025-10-06T08:00:00.000+05:30"
}
},
{
"id": "OOS:PM",
"validFor": {
"endDateTime": "2025-10-06T17:00:00.000+05:30",
"startDateTime": "2025-10-06T13:00:00.000+05:30"
}
},
{
"id": "OOS:AD",
"validFor": {
"endDateTime": "2025-10-07T17:00:00.000+05:30",
"startDateTime": "2025-10-07T08:00:00.000+05:30"
}
},
{
"id": "OOS:AM",
"validFor": {
"endDateTime": "2025-10-07T12:00:00.000+05:30",
"startDateTime": "2025-10-07T08:00:00.000+05:30"
}
},
{
"id": "OOS:PM",
"validFor": {
"endDateTime": "2025-10-07T17:00:00.000+05:30",
"startDateTime": "2025-10-07T13:00:00.000+05:30"
}
}
],
"relatedEntity": [
{
"id": "SALESFORCE",
"name": "SALESFORCE123",
"role": "channel",
"@referredType": "Channel"
},
{
"id": "2025101503795581",
"name": "PHONE",
"role": "Ticket",
"@referredType": "TroubleTicket"
}
],
"requestedTimeSlot": [
{
"validFor": {
"endDateTime": "2025-10-07T08:00:00.000+05:30",
"startDateTime": "2025-10-06T08:00:00.000+05:30"
}
}
]
}